home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / elv18src.zip / borland.h < prev    next >
C/C++ Source or Header  |  1994-01-02  |  599b  |  19 lines

  1. /* borland.h
  2.  * This file will turn off the use of pre-compiled headers for a
  3.  * single source file when "included" before other include files
  4.  * and compiling with borland c. (Has no effect with turbo c.)
  5.  * (All this to work around a stupid bug that results in an
  6.  * executable not getting access to argc, argv, & envp. Needed 
  7.  * only in a module with a 'main' function.)
  8.  * This needs to be in a separate file, because not everyone
  9.  * recognizes pragma directives.
  10.  */
  11.  
  12. #pragma hdrstop
  13. #pragma warn -pro
  14. #pragma warn -use
  15. #pragma warn -eff
  16. #pragma warn -par
  17. #pragma warn -pia
  18. #pragma warn -ccc
  19.